home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / sendcom_.zip / SENDCOM.DOC < prev    next >
Text File  |  1991-10-14  |  3KB  |  67 lines

  1.  
  2. PCBOARD is a registered trademark of Clark Development Company, Inc.
  3.  
  4. ╔═════════════════════════════════════════╦═══════════════════════════════════╗
  5. ║   FREE SOURCE CODE CONCEPT (FSCC)       ║  Tired of Shareware, Nagware, or  ║
  6. ╠═════════════════════════════════════════╣  Freeware with strings?  Join the ║
  7. ║   Don't have to mention authors name.  ║  FFSC arena!  It's not required,  ║
  8. ║   Released to Public Domain.           ║  but if you improve/add to this   ║
  9. ║   No strings attached.                 ║  code think about using the FSCC. ║
  10. ╚═══════════════╦═════════════════════════╩══════════════════╦════════════════╝
  11.                 ║  This code compliments of --->THE KID<---  ║
  12.                 ╚══════════╦════════════════════╦════════════╝
  13.                            ║ Alias Bill Shields ║
  14.                            ╚════════════════════╝
  15.  
  16. *:::::::::::::::::::::::::::[ DISCLAIMER ]:::::::::::::::::::::::::::::::::*
  17.  
  18. SENDCOM.EXE by Bill Shields is released to public domain.
  19.  
  20. SENDCOM.EXE is provided AS IS without any warranty,  expressed or implied.
  21. This  includes  without  limitation  the  fitfulness  to  a particular
  22. purpose or application and any warranties of merchantability.  While I tried
  23. to be as thorough as  possible while  debugging SENDCOM.EXE, I shall  not  be
  24. liable for any damages, whether direct, indirect, special,  or  consequential
  25. arising  from a failure of SENDCOM.EXE to operate in a manner desired by the
  26. user. I shall  not be  liable for  any damage to data or property which may
  27. by caused directly or indirectly  by use of SENDCOM.EXE.
  28.  
  29. In no event will I be liable to you for any damages, including any lost
  30. profits, lost savings or  other incidental or consequential  damages arising
  31. out of your use or inability to use the program, or for any claim by any
  32. other party.
  33.  
  34. *::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*
  35.  
  36. SYNTAX  
  37. ======
  38. SENDCOM /F filename 
  39.    -- OR --
  40. SENDCOM  string
  41.  
  42. SENDCOM Supports PCBOARD @X commands.   Program reads PCBOARD.SYS for
  43. ANSI mode and Communication port.  If you are using this program locally
  44. SENDCOM will not attempt to send data to a communication port.
  45.  
  46. EXAMPLE <string>
  47. =======
  48. C>SENDCOM CR THIS IS LINE ONE CR this is line two CR this is line three
  49.  
  50. Would display the following on the remote and host terminal...
  51. THIS IS LINE ONE
  52. this is line two
  53. this is line three
  54.  
  55. Where CR must have spaces on both sides.  It will set a Carriage Return/Linfeed
  56. and continue displaying line.
  57.  
  58.  
  59. EXAMPLE <filename>
  60. =======
  61. C>SENDCOM /F filename
  62.  
  63. Will display the file "filename" if it finds it.  If not an error message, 
  64. stating that the filename is missing, will appear on remote and host terminals.
  65. The command line must be in the above sequence for the file function to work.
  66.  
  67.